home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / os2tools / aping / aping.bor < prev    next >
Text File  |  1992-05-19  |  2KB  |  54 lines

  1.  
  2.  
  3. #
  4. #  You should have previously set your LIB and INCLUDE paths with the
  5. #  TURBOC.CFG file.  This file is usually kept either in your current
  6. #  directory or \BORLANDC\BIN.
  7. #
  8. #  You must modify your TURBOC.CFG file to reference the directory
  9. #  containing the Networking Services/DOS library files.
  10. #  For example, add:
  11. #  -IC:\NSD\INCLUDE
  12. #  -LC:\NSD\LIB
  13. #
  14. #  Compiler Switches:
  15. #   -c  = Compile only, no link
  16. #   -ml = Using the Large memory model.
  17. #   -N- = Remove stack probes - Use only on fully debugged program.
  18. #   -O  = Jump optimization
  19. #   -G  = Speed optimization (BCC, by default, favours size over speed).
  20. #  -lTd = Create real mode executable.
  21. #   -a- = Pack structure members on byte boundaries (default).
  22. #   -A- = Enable special keywords.
  23. #   -W  = Maximum warning level.
  24.  
  25.  
  26. C_OPTIONS =         -lTd -N- -O -w -a- -A- -DDOS -DBCC -ms!
  27.  
  28. L_FILES = cpicnsdr.lib cpicerr.OBJ cpicinit.OBJ cpicport.OBJ getopt.obj
  29.  
  30. C_ONLY_OPTIONS = -c -lTd -N- -O -w -a- -A- -DDOS -ms!
  31.  
  32.  
  33. aping: aping.exe apingd.exe
  34.  
  35. aping.EXE: aping.bor aping.C  cpicerr.OBJ cpicinit.OBJ cpicport.OBJ getopt.obj cpicerr.h cpicinit.h
  36.          BCC $(C_OPTIONS) $&.C $(L_FILES)
  37.  
  38. apingd.EXE: aping.bor apingd.C  cpicerr.OBJ cpicport.OBJ cpicinit.OBJ getopt.obj
  39.         BCC $(C_OPTIONS) $&.C $(L_FILES)
  40.  
  41.  
  42. cpicerr.OBJ: aping.bor cpicerr.C cpicerr.h
  43.         BCC $(C_ONLY_OPTIONS) $&.C 
  44.  
  45. cpicinit.OBJ: aping.bor cpicinit.C cpicinit.h
  46.         BCC $(C_ONLY_OPTIONS) $&.C 
  47.  
  48. cpicport.OBJ: aping.bor cpicport.C cpicport.h
  49.         BCC $(C_ONLY_OPTIONS) $&.C 
  50.  
  51. getopt.OBJ: aping.bor getopt.C getopt.h
  52.         BCC $(C_ONLY_OPTIONS) $&.C 
  53.  
  54.